home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 29 / PC Gamer IT CD 29 1-2.iso / MEDIA / UPDATE.DXR / Internal_20.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  235 b   |  14 lines

  1. on mouseUp
  2.   killdatafile()
  3.   go("importing")
  4. end
  5.  
  6. on killdatafile
  7.   global myFile
  8.   set myFile to new(xtra("fileio"))
  9.   set fileName to the pathName & "UPDATE.DB"
  10.   openFile(myFile, fileName, 1)
  11.   delete(myFile)
  12.   set myFile to 0
  13. end
  14.